fix: resolve CI failures with artifacts, macOS runner, and Python versions#17
Open
corneliusroemer wants to merge 3 commits into
Open
fix: resolve CI failures with artifacts, macOS runner, and Python versions#17corneliusroemer wants to merge 3 commits into
corneliusroemer wants to merge 3 commits into
Conversation
Updates outdated GitHub Actions to their latest versions: - actions/checkout v3 → v4 - pypa/cibuildwheel v2.11.1 → v2.21.3 - actions/upload-artifact v3 → v4 - actions/download-artifact v3 → v4 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Fixes multiple CI issues:
- Fix artifact upload conflicts by giving each job a unique artifact name
(dist-{os}-py{version}) to avoid conflicts with actions/upload-artifact@v3
- Update download step to collect all artifacts into dist folder
- Replace deprecated macOS-11 runner with macOS-13
These changes address the artifact conflicts that were causing build failures
and the macOS runner timeout issues.
Note: C++ test failures and Python example test failures still need investigation
as logs are not available from previous runs.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Remove Python 3.6 and 3.7 from the build matrix as they are no longer supported (3.6 EOL: Dec 2021, 3.7 EOL: June 2023). Current supported versions: 3.8, 3.9, 3.10, 3.11 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
corneliusroemer
force-pushed
the
fix-ci-issues
branch
from
October 14, 2025 13:18
4217743 to
f33f897
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes multiple CI failures. This PR is based on #15 (GitHub Actions updates) and should be merged after it.
Artifact upload conflicts
dist-{os}-py{version}) to avoid conflictsFailed to CreateArtifact: Received non-retryable error: Failed request: (409) Conflict: an artifact with this name already exists on the workflow runmacOS runner deprecation
macOS-11runner withmacOS-13This request was automatically failed because there were no enabled runners online to process the request for more than 1 daysPython version support
Dependencies
Outstanding issues
Test plan
🤖 Generated with Claude Code